Add HSA Endeavour support. From Sven Dowideit.
authorrobertl <robertl@f51c46e8-681c-474f-0cfe-069cfd0219fb>
Wed, 11 Aug 2004 20:18:13 +0000 (20:18 +0000)
committerrobertl <robertl@f51c46e8-681c-474f-0cfe-069cfd0219fb>
Wed, 11 Aug 2004 20:18:13 +0000 (20:18 +0000)
Update msdev & visual studio stuff.

Fix spelling becuase I can't.

13 files changed:
gpsbabel/Makefile
gpsbabel/geo.c
gpsbabel/gpx.c
gpsbabel/hsa_ndv.c [new file with mode: 0644]
gpsbabel/magproto.c
gpsbabel/mapsend.c
gpsbabel/mapsend.h
gpsbabel/msvc/GPSBabel.dsp
gpsbabel/msvc/GPSBabel.sln [new file with mode: 0644]
gpsbabel/msvc/GPSBabel.vcproj [new file with mode: 0644]
gpsbabel/navicache.c
gpsbabel/tiger.c
gpsbabel/vecs.c

index fa1f672f4a2e0fbd0d6a155aa5c4facd2a0d723a..0f92abed10893eb4e8049ad9fa1647aedc1c3cf6 100644 (file)
@@ -19,7 +19,7 @@ FMTS=magproto.o gpx.o geo.o mapsend.o mapsource.o \
        psp.o holux.o garmin.o tmpro.o tpg.o \
        xcsv.o gcdb.o tiger.o internal_styles.o easygps.o quovadis.o \
        gpilots.o saroute.o navicache.o psitrex.o geoniche.o delgpl.o \
-       ozi.o nmea.o text.o html.o palmdoc.o netstumbler.o
+       ozi.o nmea.o text.o html.o palmdoc.o netstumbler.o hsa_ndv.o
 
 FILTERS=position.o duplicate.o arcdist.o polygon.o smplrout.o reverse_route.o sort.o
 
index 1f4425cb0b2044f6ffcc68b6c2cc606d82a955f5..ceb14b24251d9390bbc4f73970fa4ffcd968a818 100644 (file)
@@ -49,7 +49,7 @@ arglist_t geo_args[] = {
 void
 geo_rd_init(const char *fname)
 {
-       fatal(MYNAME ": This build excluded GPX support becuase expat was not installed.\n");
+       fatal(MYNAME ": This build excluded GEO support because expat was not installed.\n");
 }
 
 void
index d070f03bc987a071cb7b0beb479a92e7c02216f7..9f0f9130866efb3c40f7c9ced23165a8a157f569 100644 (file)
@@ -778,7 +778,7 @@ gpx_end(void *data, const char *el)
 void
 gpx_rd_init(const char *fname)
 {
-       fatal(MYNAME ": This build excluded GPX support becuase expat was not installed.\n");
+       fatal(MYNAME ": This build excluded GPX support because expat was not installed.\n");
 }
 
 #else /* NO_EXPAT */
@@ -847,7 +847,7 @@ gpx_rd_init(const char *fname)
        cdatastr = vmem_alloc(1, 0);
        *((char *)cdatastr.mem) = '\0';
 
-       /* We don't use xstrdup here becuase we' know we don't free
+       /* We don't use xstrdup here because we' know we don't free
         * this across reads and we unlock the safety belt from the 
         * leak tester.
         */
diff --git a/gpsbabel/hsa_ndv.c b/gpsbabel/hsa_ndv.c
new file mode 100644 (file)
index 0000000..39b88ec
--- /dev/null
@@ -0,0 +1,546 @@
+/* 
+    Copyright (C) 2004 HSA Systems, Sven Dowideit <sven@hsa.com.au>
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program; if not, write to the Free Software
+    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111 USA
+
+ */
+#include "defs.h"
+#if !NO_EXPAT
+#include <expat.h>
+static XML_Parser psr;
+#endif
+
+static char *cdatastr;
+static int in_Route = 0;
+static int in_ChartWork = 0;
+static int in_Object = 0;
+
+static waypoint *wpt_tmp;
+char *routeName = "ROUTENAME";
+
+#define REPLACEMENT_SIRIUS_ATTR_SEPARATOR      ';'
+#define ATTR_USRMRK                                                    "usrmrk"
+#define ATTR_OBJECTNAME                                                "OBJNAM"
+#define ATTR_SHIPNAME                                          "shpnam"
+
+void readVersion4( FILE* pFile);
+
+FILE *fd;
+FILE *ofd;
+
+static
+arglist_t hsa_ndv_args[] = {
+//     {"deficon", &deficon, "Default icon name", ARGTYPE_STRING },
+       {0, 0, 0, 0}
+};
+
+#define MYNAME "HsaNdv"
+#define MY_CBUF 4096
+
+#define TRUE   1
+#define FALSE  0
+
+
+#if NO_EXPAT
+void
+hsa_ndv_rd_init(const char *fname)
+{
+       fatal(MYNAME ": This build excluded HSA Endeavour support because expat was not installed.\n");
+}
+
+void
+hsa_ndv_read(void)
+{
+}
+#else
+
+static void
+hsa_ndv_start(void *data, const char *el, const char **attr)
+{
+//     printf("<%s>\n", el);
+       if (strcmp(el, "Export") == 0)
+       {//should only be one
+       }
+       else if (strcmp(el, "Route") == 0)
+       {
+               in_Route++;
+       }
+       else if (strcmp(el, "Chartwork") == 0)
+       {
+               in_ChartWork++;
+       }
+       else if (strcmp(el, "Object") == 0)
+       {
+               wpt_tmp = xcalloc(sizeof(*wpt_tmp), 1);
+               wpt_tmp->altitude = unknown_alt;
+               in_Object++;
+       }
+       //reset data :)
+       memset(cdatastr,0, MY_CBUF);
+}
+
+static void getAttr(const char *data, const char *attr, char **val, char seperator)
+{
+       char *start;
+       if ((start = strstr(data, attr)) != NULL)
+       {
+               char *end;
+               int len;
+
+               end = strchr(start, seperator);
+               if (end == NULL)
+               {
+                       end = start + strlen(start);//assume we are teh last attr
+               }
+
+               len = end-start - strlen(attr);
+
+               *val = xcalloc(len+1, 1);
+               memcpy(*val, start+strlen(attr), len);
+               (*val)[len] = '\0';
+       }
+       else
+       {
+               *val = xcalloc(1, 1);
+               (*val)[0] = '\0';
+       }
+}
+
+static void
+hsa_ndv_end(void *data, const char *el)
+{
+       if (in_Route)
+       {
+               if (strcmp(el, "Version") == 0)
+               {//don't really care
+               }
+               else if (strcmp(el, "Name") == 0)
+               {
+                       routeName = xstrdup(cdatastr);
+               }
+               else if (strcmp(el, "LastModified") == 0)
+               {//don't really care
+               }
+               if (in_Object)
+               {
+                       if (strcmp(el, "ClassName") == 0)
+                       {
+                       }
+                       else if (strcmp(el, "Attr") == 0)
+                       {
+                               getAttr(cdatastr, ATTR_OBJECTNAME, &wpt_tmp->shortname, REPLACEMENT_SIRIUS_ATTR_SEPARATOR);
+                               getAttr(cdatastr, ATTR_USRMRK, &wpt_tmp->description, REPLACEMENT_SIRIUS_ATTR_SEPARATOR);
+                       }
+                       else if (strcmp(el, "LegAttr") == 0)
+                       {
+                       }
+                       else if (strcmp(el, "NumberOfVertexs") == 0)
+                       {
+                       }
+                       else if (strcmp(el, "Latitude") == 0)
+                       {
+                               wpt_tmp->latitude = atof(cdatastr);
+                       }
+                       else if (strcmp(el, "Longitude") == 0)
+                       {
+                               wpt_tmp->longitude = atof(cdatastr);
+                       }
+               }
+       }
+
+       if (in_ChartWork)
+       {
+               if (strcmp(el, "Version") == 0)
+               {//don't really care
+               }
+               if (in_Object)
+               {
+                       if (strcmp(el, "ClassName") == 0)
+                       {
+//                             className = xstrdup(cdatastr);
+                       }
+                       else if (strcmp(el, "Attr") == 0)
+                       {
+                               //getAttr(cdatastr, ATTR_OBJECTNAME, &wpt_tmp->shortname, REPLACEMENT_SIRIUS_ATTR_SEPARATOR);
+                               //getAttr(cdatastr, ATTR_SHIPNAME, &wpt_tmp->description, REPLACEMENT_SIRIUS_ATTR_SEPARATOR);
+                       }
+                       else if (strcmp(el, "NumberOfVertexs") == 0)
+                       {
+                       }
+                       else if (strcmp(el, "Latitude") == 0)
+                       {
+                               wpt_tmp->latitude = atof(cdatastr);
+                       }
+                       else if (strcmp(el, "Longitude") == 0)
+                       {
+                               wpt_tmp->longitude = atof(cdatastr);
+                       }
+                       else if (strcmp(el, "Time") == 0)
+                       {
+                               wpt_tmp->creation_time = atoi(cdatastr);
+                       }
+               }
+       }
+
+       //ignore everything else for now..
+       memset(cdatastr,0, MY_CBUF);
+
+       if (strcmp(el, "Object") == 0) 
+       {
+               if (in_Route)
+               {
+                       waypt_add(wpt_tmp);
+               }
+               else if (in_ChartWork)
+               {
+                       //TODO: not sure how i want to handle this..
+               }
+               in_Object--;
+       }
+       else if (strcmp(el, "Route") == 0) 
+       {
+               in_Route--;
+       }
+       else if (strcmp(el, "Chartwork") == 0) 
+       {
+               in_ChartWork--;
+       }
+}
+
+static void
+hsa_ndv_cdata(void *dta, const XML_Char *s, int len)
+{
+       char *estr;
+       estr = cdatastr + strlen(cdatastr);
+       memcpy(estr, s, len); 
+}
+
+void
+hsa_ndv_rd_init(const char *fname)
+{
+       fd = xfopen(fname, "r", MYNAME);
+
+       psr = XML_ParserCreate(NULL);
+       if (!psr) {
+               fatal(MYNAME ":Cannot create XML parser\n");
+       }
+
+       XML_SetElementHandler(psr, hsa_ndv_start, hsa_ndv_end);
+       cdatastr = xcalloc(MY_CBUF,1);
+       XML_SetCharacterDataHandler(psr, hsa_ndv_cdata);
+}
+
+void
+hsa_ndv_read(void)
+{
+       int len;
+       char buf[MY_CBUF];
+       
+       while ((len = fread(buf, 1, sizeof(buf), fd))) 
+       {
+               char *bad;
+
+               if (NULL != strstr(buf, "nver=1"))
+               {//its the older format, not xml
+                       fseek(fd, 0, SEEK_SET);
+                       readVersion4(fd);
+                       break;
+               }
+               //grumble - have to remove \x1f's from sirius attributes
+               while (NULL != (bad = strchr(buf, '\x1f')))
+               {
+                       *bad = REPLACEMENT_SIRIUS_ATTR_SEPARATOR;
+               }
+               if (!XML_Parse(psr, buf, len, feof(fd))) {
+                       fatal(MYNAME ":Parse error at %d: %s\n", 
+                               XML_GetCurrentLineNumber(psr),
+                               XML_ErrorString(XML_GetErrorCode(psr)));
+               }
+       }
+
+       XML_ParserFree(psr);
+}
+
+#endif
+
+void
+hsa_ndv_rd_deinit(void)
+{
+       if ( cdatastr ) {
+               xfree(cdatastr);
+       }
+       fclose(fd);
+}
+
+void
+hsa_ndv_wr_init(const char *fname)
+{
+       ofd = xfopen(fname, "w", MYNAME);
+}
+
+void
+hsa_ndv_wr_deinit(void)
+{
+       fclose(ofd);
+}
+
+static int legNum = 0;
+
+static void
+hsa_ndv_waypt_pr(const waypoint *waypointp)
+{
+
+       fprintf(ofd, "\t\t<Object>\n");
+
+       fprintf(ofd, "\t\t\t<ClassName>waypnt</ClassName>\n");
+//ignore these for now, they are s57 specific
+//     fprintf(ofd, "\t\t\t<FeatureNameAgency>0</FeatureNameAgency>\n");
+//     fprintf(ofd, "\t\t\t<FeatureNameSubDiv>1</FeatureNameSubDiv>\n");
+//     fprintf(ofd, "\t\t\t<FeatureNameNumber>1089009023</FeatureNameNumber>\n");
+       fprintf(ofd, "\t\t\t<Attr>attr=grpnam%s\x1ftrnrad50\x1fOBJNAM%s\x1flegnum%i\x1fusrmrk%s\x1fselect2\1f</Attr>\n",
+                               routeName, waypointp->shortname, legNum, waypointp->description);
+       fprintf(ofd, "\t\t\t<LegAttr></LegAttr>\n");
+       fprintf(ofd, "\t\t\t<NumberOfVertexs>1</NumberOfVertexs>\n");
+       fprintf(ofd, "\t\t\t<Latitude>%lf</Latitude>\n", waypointp->latitude);
+       fprintf(ofd, "\t\t\t<Longitude>%lf</Longitude>\n", waypointp->longitude);
+
+       fprintf(ofd, "\t\t</Object>\n");
+
+       legNum++;
+}
+
+void
+hsa_ndv_write(void)
+{
+       fprintf(ofd, "<?xml version=\"1.0\"?>\n");
+       fprintf(ofd, "<Export>\n");
+       fprintf(ofd, "\t<Route>\n");
+       fprintf(ofd, "\t\t<Version>1.0000000</Version>\n");
+       fprintf(ofd, "\t\t<Name>ROUTENAME</Name>\n");                   /*TODO: used filename? */
+       fprintf(ofd, "\t\t<LastModified>0</LastModified>\n");
+       waypt_disp_all(hsa_ndv_waypt_pr);
+       fprintf(ofd, "\t</Route>\n");
+
+//later we'll import past tracks and chart objects?
+//     fprintf(ofd, "\t<Chartwork>\n");
+//     fprintf(ofd, "\t\t<Version>1.0000000</Version>\n");
+//     track_disp_all(hsa_ndv_track_pr);
+//     fprintf(ofd, "\t</Chartwork>\n");
+
+
+       fprintf(ofd, "</Export>\n");
+}
+
+ff_vecs_t HsaEndeavourNavigator_vecs = {
+       ff_type_file,
+       hsa_ndv_rd_init,        
+       hsa_ndv_wr_init,        
+       hsa_ndv_rd_deinit,
+       hsa_ndv_wr_deinit,
+       hsa_ndv_read,
+       hsa_ndv_write,
+       hsa_ndv_args
+};
+
+//////////////////////////////////////////////////////////////////////////
+// older style Endeavour route export file
+//read DEC2000 NDV export files
+
+#define EF_RECORD_DELIMTER 0
+#define ED_REC_NAME_SIZE 5
+#define EF_NVER_REC "nver="
+#define EF_LAT_REC "lati="
+#define EF_LONG_REC "long="
+#define EF_TIME_REC "time="
+#define EF_ATTR_REC "attr="
+#define EF_CLNM_REC "clnm="
+#define INVALID_TIME -1L
+#define SOUNDARRAY_CHAR 'S'
+
+int readRecord( FILE* pFile, const char* pRecName, char *recData);
+int readPositionRecord( FILE* pFile, double* lat, double* lng, long* timeStamp);
+
+void readVersion4( FILE* pFile)
+{
+       while( TRUE )
+       {
+               char recData[256];
+               // get the position
+               double  lat2, lng2;
+
+               // set the pointer to the time stamp depending
+               // on whether we have a sounding array or not
+               long ts1, ts2;
+               long* pts1 = 0;
+               long* pts2 = 0;
+
+               int soundArray = FALSE;
+               int numberOfVerticies;
+               char className[256];
+               char attr[1024];
+               int Vertex;
+
+               memset(attr, 0, 1024);
+
+               wpt_tmp = xcalloc(sizeof(*wpt_tmp), 1);
+               wpt_tmp->altitude = unknown_alt;
+
+               // read the first record
+               if( !readRecord( pFile, EF_NVER_REC, recData) )
+                       // no first record then finished
+                       break;
+
+               // get the type
+               sscanf( (const char*)recData, "%d", &numberOfVerticies);
+
+               // do we have a sounding array
+               if( *((const char *)recData + strlen(recData) - 1) == SOUNDARRAY_CHAR )
+               {
+                       soundArray = TRUE;
+               }
+
+               if( soundArray )
+               {
+                       pts1 = &ts1;
+                       pts2 = &ts2;
+               }
+
+               // go through the vertices
+               for( Vertex = 0; Vertex < numberOfVerticies; Vertex++)
+               {               
+                       // read vertex position
+                       if( !readPositionRecord( pFile, &lat2, &lng2, pts2) )
+                               return;
+
+                       wpt_tmp->longitude = lng2;
+                       wpt_tmp->latitude = lat2;
+                       break;//TODO: ignore more points for now
+               }
+
+
+               // read the class name
+               if( !readRecord( pFile, EF_CLNM_REC, className) )
+                       return;
+
+               // read the attributes name
+               if( !readRecord( pFile, EF_ATTR_REC, attr) )
+                       return;
+               getAttr(attr, ATTR_OBJECTNAME, &wpt_tmp->shortname, '\x1f');
+               getAttr(attr, ATTR_USRMRK, &wpt_tmp->description, '\x1f');
+
+               {
+                       char *bad;
+                       //remove \n and \x1f from description data
+                       while (NULL != (bad = strchr(wpt_tmp->description, '\x1f')))
+                       {
+                               *bad = REPLACEMENT_SIRIUS_ATTR_SEPARATOR;
+                       }
+                       while (NULL != (bad = strchr(wpt_tmp->description, '\n')))
+                       {
+                               *bad = ' ';
+                       }
+                       while (NULL != (bad = strchr(wpt_tmp->description, '\r')))
+                       {
+                               *bad = ' ';
+                       }
+               }
+
+               waypt_add(wpt_tmp);
+       }
+
+       fclose(pFile);
+       return;
+}
+
+// read a record to a file
+int readRecord( FILE* pFile, const char* pRecName, char *recData)
+{
+       // get the rec name
+       int len;
+       char recName[ED_REC_NAME_SIZE+1];
+       char arrRecData[256];
+
+       for( len = 0; len < ED_REC_NAME_SIZE; len++)
+       {
+               int c = fgetc( pFile);
+
+               // if we hit EOF failed
+               if( c == EOF )
+                       return FALSE;
+
+               recName[len] = c;
+       }
+
+       // if the record name is not the reqiured type then error
+       if( strncmp( recName, pRecName, ED_REC_NAME_SIZE) != 0 )
+               return FALSE;
+
+       // get the rec data
+       for( len = 0; TRUE; len++)
+       {
+               int c = fgetc( pFile);
+
+               // if we hit EOF failed
+               if( c == EOF )
+                       return FALSE;
+
+               // hit end of line
+               if( c == EF_RECORD_DELIMTER )
+                       break;
+
+               arrRecData[len] = c;
+       }
+
+       // get the rec data to a string
+       strncpy(recData, arrRecData, len);
+
+       return TRUE;
+}
+
+// read position
+int readPositionRecord( FILE* pFile, double* lat, double* lng, 
+                                               long* timeStamp)
+{
+       // read the lat record
+       char recData[256];
+       if( !readRecord( pFile, EF_LAT_REC, recData) )
+               // no lat record then finished
+               return FALSE;
+
+       // read the latitude
+       sscanf( (const char*)recData, "%lf", lat);
+
+       // read the lng record
+       if( !readRecord( pFile, EF_LONG_REC, recData) )
+               // no first record then finished
+               return FALSE;
+
+       // read the latitude
+       sscanf( (const char*)recData, "%lf", lng);
+
+       // if we are to read a time record
+       if( timeStamp )
+       {
+               // read the lng record
+               if( !readRecord( pFile, EF_TIME_REC, recData) )
+                       // no first record then finished
+                       return FALSE;
+
+               // read the latitude
+               sscanf( (const char*)recData, "%ld", timeStamp);
+       }
+
+       return TRUE;
+}
index acbd815a1f195251a3127926ed407376bdd346e8..b3fa7bfaad1dfe1407ef5de406be196c65a966ea 100644 (file)
@@ -152,7 +152,7 @@ static icon_mapping_t map330_icon_table[] = {
        { "an", "winery" },
        { "ao", "wreck" },
        { "ap", "zoo" },
-       { "ah", "Virtual cache"},       /* Binos: becuase you "see" them. */
+       { "ah", "Virtual cache"},       /* Binos: because you "see" them. */
        { "ak", "Micro-Cache" },        /* Looks like a film canister. */
        { "an", "Multi-Cache"},         /* Winery: grapes 'coz they "bunch" */
        { "s",  "Unknown Cache"},       /* 'Suprise' cache: use a target. */
index 449dc4f715d0e86c94e540dfbb5a22df2767a139..7477a043f68b290f416f45f495e4fbf54e19f6ea 100644 (file)
@@ -277,7 +277,7 @@ mapsend_read(void)
        char buf[3];
 
        /*
-        * Becuase of the silly struct packing and the goofy variable-length
+        * Because of the silly struct packing and the goofy variable-length
         * strings, each member has to be read in one at a time.  Grrr.
         */
 
index 3c77b332004ce2dad6dcb7186c23a41432dffe23..2d1ef94488d9b1e4d924ac90eec5ee77ff3509f8 100644 (file)
@@ -22,7 +22,7 @@
  *  Mapsend File Format Description Revision 1.1, March 6, 2002 from Thales.
  * 
  * Note this file format was clearly NOT designed for cross-architecture
- * portability.  In fact, becuase of the pascal nature of the 'string' 
+ * portability.  In fact, because of the pascal nature of the 'string' 
  * data type described in that document, it's impractical to describe 
  * a 'struct waypoint' in C.
  * 
index a52ecd8e81bb0c3e0b71bb766565d1cdf70f570e..5b1ab443dd99ad657023999a5f9b3ef990fe413b 100644 (file)
-# Microsoft Developer Studio Project File - Name="GPSBabel" - Package Owner=<4>\r
-# Microsoft Developer Studio Generated Build File, Format Version 6.00\r
-# ** DO NOT EDIT **\r
-\r
-# TARGTYPE "Win32 (x86) Console Application" 0x0103\r
-\r
-CFG=GPSBabel - Win32 Debug\r
-!MESSAGE This is not a valid makefile. To build this project using NMAKE,\r
-!MESSAGE use the Export Makefile command and run\r
-!MESSAGE \r
-!MESSAGE NMAKE /f "GPSBabel.mak".\r
-!MESSAGE \r
-!MESSAGE You can specify a configuration when running NMAKE\r
-!MESSAGE by defining the macro CFG on the command line. For example:\r
-!MESSAGE \r
-!MESSAGE NMAKE /f "GPSBabel.mak" CFG="GPSBabel - Win32 Debug"\r
-!MESSAGE \r
-!MESSAGE Possible choices for configuration are:\r
-!MESSAGE \r
-!MESSAGE "GPSBabel - Win32 Release" (based on "Win32 (x86) Console Application")\r
-!MESSAGE "GPSBabel - Win32 Debug" (based on "Win32 (x86) Console Application")\r
-!MESSAGE \r
-\r
-# Begin Project\r
-# PROP AllowPerConfigDependencies 0\r
-# PROP Scc_ProjName ""\r
-# PROP Scc_LocalPath ""\r
-CPP=cl.exe\r
-RSC=rc.exe\r
-\r
-!IF  "$(CFG)" == "GPSBabel - Win32 Release"\r
-\r
-# PROP BASE Use_MFC 0\r
-# PROP BASE Use_Debug_Libraries 0\r
-# PROP BASE Output_Dir "Release"\r
-# PROP BASE Intermediate_Dir "Release"\r
-# PROP BASE Target_Dir ""\r
-# PROP Use_MFC 0\r
-# PROP Use_Debug_Libraries 0\r
-# PROP Output_Dir "Release"\r
-# PROP Intermediate_Dir "Release"\r
-# PROP Target_Dir ""\r
-# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c\r
-# ADD CPP /nologo /W3 /GX /O2 /I "expat" /I "..\coldsync" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "__WIN32__" /D VERSION=\"1.2.1_beta01072004_msvc\" /YX /FD /c\r
-# ADD BASE RSC /l 0x409 /d "NDEBUG"\r
-# ADD RSC /l 0x409 /d "NDEBUG"\r
-BSC32=bscmake.exe\r
-# ADD BASE BSC32 /nologo\r
-# ADD BSC32 /nologo\r
-LINK32=link.exe\r
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386\r
-# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386\r
-\r
-!ELSEIF  "$(CFG)" == "GPSBabel - Win32 Debug"\r
-\r
-# PROP BASE Use_MFC 0\r
-# PROP BASE Use_Debug_Libraries 1\r
-# PROP BASE Output_Dir "Debug"\r
-# PROP BASE Intermediate_Dir "Debug"\r
-# PROP BASE Target_Dir ""\r
-# PROP Use_MFC 0\r
-# PROP Use_Debug_Libraries 1\r
-# PROP Output_Dir "Debug"\r
-# PROP Intermediate_Dir "Debug"\r
-# PROP Target_Dir ""\r
-# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c\r
-# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /I "expat" /I "..\coldsync" /D "WIN32" /D "__WIN32__" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /D VERSION=\"1.2.1_beta01072004_msvc\" /FR /YX /FD /GZ /c\r
-# SUBTRACT CPP /WX\r
-# ADD BASE RSC /l 0x409 /d "_DEBUG"\r
-# ADD RSC /l 0x409 /d "_DEBUG"\r
-BSC32=bscmake.exe\r
-# ADD BASE BSC32 /nologo\r
-# ADD BSC32 /nologo\r
-LINK32=link.exe\r
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept\r
-# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept\r
-\r
-!ENDIF \r
-\r
-# Begin Target\r
-\r
-# Name "GPSBabel - Win32 Release"\r
-# Name "GPSBabel - Win32 Debug"\r
-# Begin Group "Source Files"\r
-\r
-# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"\r
-# Begin Group "Jeeps"\r
-\r
-# PROP Default_Filter ""\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsapp.c\r
-\r
-!IF  "$(CFG)" == "GPSBabel - Win32 Release"\r
-\r
-# PROP Intermediate_Dir "Release\Jeeps"\r
-\r
-!ELSEIF  "$(CFG)" == "GPSBabel - Win32 Debug"\r
-\r
-# PROP Intermediate_Dir "Debug\Jeeps"\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpscom.c\r
-\r
-!IF  "$(CFG)" == "GPSBabel - Win32 Release"\r
-\r
-# PROP Intermediate_Dir "Release\Jeeps"\r
-\r
-!ELSEIF  "$(CFG)" == "GPSBabel - Win32 Debug"\r
-\r
-# PROP Intermediate_Dir "Debug\Jeeps"\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsmath.c\r
-\r
-!IF  "$(CFG)" == "GPSBabel - Win32 Release"\r
-\r
-# PROP Intermediate_Dir "Release\Jeeps"\r
-\r
-!ELSEIF  "$(CFG)" == "GPSBabel - Win32 Debug"\r
-\r
-# PROP Intermediate_Dir "Debug\Jeeps"\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsmem.c\r
-\r
-!IF  "$(CFG)" == "GPSBabel - Win32 Release"\r
-\r
-# PROP Intermediate_Dir "Release\Jeeps"\r
-\r
-!ELSEIF  "$(CFG)" == "GPSBabel - Win32 Debug"\r
-\r
-# PROP Intermediate_Dir "Debug\Jeeps"\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsprot.c\r
-\r
-!IF  "$(CFG)" == "GPSBabel - Win32 Release"\r
-\r
-# PROP Intermediate_Dir "Release\Jeeps"\r
-\r
-!ELSEIF  "$(CFG)" == "GPSBabel - Win32 Debug"\r
-\r
-# PROP Intermediate_Dir "Debug\Jeeps"\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsread.c\r
-\r
-!IF  "$(CFG)" == "GPSBabel - Win32 Release"\r
-\r
-# PROP Intermediate_Dir "Release\Jeeps"\r
-\r
-!ELSEIF  "$(CFG)" == "GPSBabel - Win32 Debug"\r
-\r
-# PROP Intermediate_Dir "Debug\Jeeps"\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsrqst.c\r
-\r
-!IF  "$(CFG)" == "GPSBabel - Win32 Release"\r
-\r
-# PROP Intermediate_Dir "Release\Jeeps"\r
-\r
-!ELSEIF  "$(CFG)" == "GPSBabel - Win32 Debug"\r
-\r
-# PROP Intermediate_Dir "Debug\Jeeps"\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpssend.c\r
-\r
-!IF  "$(CFG)" == "GPSBabel - Win32 Release"\r
-\r
-# PROP Intermediate_Dir "Release\Jeeps"\r
-\r
-!ELSEIF  "$(CFG)" == "GPSBabel - Win32 Debug"\r
-\r
-# PROP Intermediate_Dir "Debug\Jeeps"\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsserial.c\r
-\r
-!IF  "$(CFG)" == "GPSBabel - Win32 Release"\r
-\r
-# PROP Intermediate_Dir "Release\Jeeps"\r
-\r
-!ELSEIF  "$(CFG)" == "GPSBabel - Win32 Debug"\r
-\r
-# PROP Intermediate_Dir "Debug\Jeeps"\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsutil.c\r
-\r
-!IF  "$(CFG)" == "GPSBabel - Win32 Release"\r
-\r
-# PROP Intermediate_Dir "Release\Jeeps"\r
-\r
-!ELSEIF  "$(CFG)" == "GPSBabel - Win32 Debug"\r
-\r
-# PROP Intermediate_Dir "Debug\Jeeps"\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# End Group\r
-# Begin Group "Coldsync"\r
-\r
-# PROP Default_Filter ""\r
-# Begin Source File\r
-\r
-SOURCE=..\coldsync\pdb.c\r
-\r
-!IF  "$(CFG)" == "GPSBabel - Win32 Release"\r
-\r
-# PROP Intermediate_Dir "Release\Coldsync"\r
-\r
-!ELSEIF  "$(CFG)" == "GPSBabel - Win32 Debug"\r
-\r
-# PROP Intermediate_Dir "Debug\Coldsync"\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\coldsync\util.c\r
-\r
-!IF  "$(CFG)" == "GPSBabel - Win32 Release"\r
-\r
-# PROP Intermediate_Dir "Release\Coldsync"\r
-\r
-!ELSEIF  "$(CFG)" == "GPSBabel - Win32 Debug"\r
-\r
-# PROP Intermediate_Dir "Debug\Coldsync"\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# End Group\r
-# Begin Source File\r
-\r
-SOURCE=..\arcdist.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\cetus.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\copilot.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\csv_util.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\delgpl.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\duplicate.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\easygps.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\filter_vecs.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\garmin.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\gcdb.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\geo.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\geoniche.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\gpilots.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\gpspilot.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\gpsutil.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\gpx.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\grtcirc.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\holux.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\html.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\internal_styles.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\magnav.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\magproto.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\main.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\mapopolis.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\mapsend.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\mapsource.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\mkshort.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\navicache.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\netstumbler.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\nmea.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\ozi.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\palmdoc.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\pcx.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\polygon.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\position.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\psitrex.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\psp.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\queue.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\quovadis.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\reverse_route.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\route.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\saroute.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\smplrout.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\sort.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\text.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\tiger.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\tmpro.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\tpg.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\util.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\util_crc.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\vecs.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\vmem.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\waypt.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\xcsv.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=.\Expat\libexpat.lib\r
-# End Source File\r
-# End Group\r
-# Begin Group "Header Files"\r
-\r
-# PROP Default_Filter "h;hpp;hxx;hm;inl"\r
-# Begin Group "Coldsync-Headers"\r
-\r
-# PROP Default_Filter ""\r
-# Begin Source File\r
-\r
-SOURCE=..\coldsync\config.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\coldsync\palm.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\coldsync\pdb.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\coldsync\pconn\util.h\r
-# End Source File\r
-# End Group\r
-# Begin Group "Jeeps-Headers"\r
-\r
-# PROP Default_Filter ""\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gps.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsapp.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpscom.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsdatum.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsfmt.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsinput.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsmath.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsmem.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsnmea.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsnmeafmt.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsnmeaget.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsport.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsproj.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsprot.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsread.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsrqst.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpssend.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsserial.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsutil.h\r
-# End Source File\r
-# End Group\r
-# Begin Source File\r
-\r
-SOURCE=..\csv_util.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\defs.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\garmin_tables.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\grtcirc.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\holux.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\magellan.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\mapsend.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\queue.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\quovadis.h\r
-# End Source File\r
-# End Group\r
-# Begin Group "Resource Files"\r
-\r
-# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"\r
-# End Group\r
-# End Target\r
-# End Project\r
+# Microsoft Developer Studio Project File - Name="GPSBabel" - Package Owner=<4>
+# Microsoft Developer Studio Generated Build File, Format Version 6.00
+# ** DO NOT EDIT **
+
+# TARGTYPE "Win32 (x86) Console Application" 0x0103
+
+CFG=GPSBabel - Win32 Debug
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
+!MESSAGE use the Export Makefile command and run
+!MESSAGE 
+!MESSAGE NMAKE /f "GPSBabel.mak".
+!MESSAGE 
+!MESSAGE You can specify a configuration when running NMAKE
+!MESSAGE by defining the macro CFG on the command line. For example:
+!MESSAGE 
+!MESSAGE NMAKE /f "GPSBabel.mak" CFG="GPSBabel - Win32 Debug"
+!MESSAGE 
+!MESSAGE Possible choices for configuration are:
+!MESSAGE 
+!MESSAGE "GPSBabel - Win32 Release" (based on "Win32 (x86) Console Application")
+!MESSAGE "GPSBabel - Win32 Debug" (based on "Win32 (x86) Console Application")
+!MESSAGE 
+
+# Begin Project
+# PROP AllowPerConfigDependencies 0
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+CPP=cl.exe
+RSC=rc.exe
+
+!IF  "$(CFG)" == "GPSBabel - Win32 Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "Release"
+# PROP BASE Intermediate_Dir "Release"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "Release"
+# PROP Intermediate_Dir "Release"
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
+# ADD CPP /nologo /W3 /GX /O2 /I "expat" /I "..\coldsync" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "__WIN32__" /D VERSION=\"1.2.1_beta01072004_msvc\" /YX /FD /c
+# ADD BASE RSC /l 0x409 /d "NDEBUG"
+# ADD RSC /l 0x409 /d "NDEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
+# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
+
+!ELSEIF  "$(CFG)" == "GPSBabel - Win32 Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "Debug"
+# PROP BASE Intermediate_Dir "Debug"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "Debug"
+# PROP Intermediate_Dir "Debug"
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
+# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /I "expat" /I "..\coldsync" /D "WIN32" /D "__WIN32__" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /D VERSION=\"1.2.1_beta01072004_msvc\" /FR /YX /FD /GZ /c
+# SUBTRACT CPP /WX
+# ADD BASE RSC /l 0x409 /d "_DEBUG"
+# ADD RSC /l 0x409 /d "_DEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
+# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
+
+!ENDIF 
+
+# Begin Target
+
+# Name "GPSBabel - Win32 Release"
+# Name "GPSBabel - Win32 Debug"
+# Begin Group "Source Files"
+
+# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
+# Begin Group "Jeeps"
+
+# PROP Default_Filter ""
+# Begin Source File
+
+SOURCE=..\jeeps\gpsapp.c
+
+!IF  "$(CFG)" == "GPSBabel - Win32 Release"
+
+# PROP Intermediate_Dir "Release\Jeeps"
+
+!ELSEIF  "$(CFG)" == "GPSBabel - Win32 Debug"
+
+# PROP Intermediate_Dir "Debug\Jeeps"
+
+!ENDIF 
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpscom.c
+
+!IF  "$(CFG)" == "GPSBabel - Win32 Release"
+
+# PROP Intermediate_Dir "Release\Jeeps"
+
+!ELSEIF  "$(CFG)" == "GPSBabel - Win32 Debug"
+
+# PROP Intermediate_Dir "Debug\Jeeps"
+
+!ENDIF 
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsmath.c
+
+!IF  "$(CFG)" == "GPSBabel - Win32 Release"
+
+# PROP Intermediate_Dir "Release\Jeeps"
+
+!ELSEIF  "$(CFG)" == "GPSBabel - Win32 Debug"
+
+# PROP Intermediate_Dir "Debug\Jeeps"
+
+!ENDIF 
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsmem.c
+
+!IF  "$(CFG)" == "GPSBabel - Win32 Release"
+
+# PROP Intermediate_Dir "Release\Jeeps"
+
+!ELSEIF  "$(CFG)" == "GPSBabel - Win32 Debug"
+
+# PROP Intermediate_Dir "Debug\Jeeps"
+
+!ENDIF 
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsprot.c
+
+!IF  "$(CFG)" == "GPSBabel - Win32 Release"
+
+# PROP Intermediate_Dir "Release\Jeeps"
+
+!ELSEIF  "$(CFG)" == "GPSBabel - Win32 Debug"
+
+# PROP Intermediate_Dir "Debug\Jeeps"
+
+!ENDIF 
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsread.c
+
+!IF  "$(CFG)" == "GPSBabel - Win32 Release"
+
+# PROP Intermediate_Dir "Release\Jeeps"
+
+!ELSEIF  "$(CFG)" == "GPSBabel - Win32 Debug"
+
+# PROP Intermediate_Dir "Debug\Jeeps"
+
+!ENDIF 
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsrqst.c
+
+!IF  "$(CFG)" == "GPSBabel - Win32 Release"
+
+# PROP Intermediate_Dir "Release\Jeeps"
+
+!ELSEIF  "$(CFG)" == "GPSBabel - Win32 Debug"
+
+# PROP Intermediate_Dir "Debug\Jeeps"
+
+!ENDIF 
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpssend.c
+
+!IF  "$(CFG)" == "GPSBabel - Win32 Release"
+
+# PROP Intermediate_Dir "Release\Jeeps"
+
+!ELSEIF  "$(CFG)" == "GPSBabel - Win32 Debug"
+
+# PROP Intermediate_Dir "Debug\Jeeps"
+
+!ENDIF 
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsserial.c
+
+!IF  "$(CFG)" == "GPSBabel - Win32 Release"
+
+# PROP Intermediate_Dir "Release\Jeeps"
+
+!ELSEIF  "$(CFG)" == "GPSBabel - Win32 Debug"
+
+# PROP Intermediate_Dir "Debug\Jeeps"
+
+!ENDIF 
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsutil.c
+
+!IF  "$(CFG)" == "GPSBabel - Win32 Release"
+
+# PROP Intermediate_Dir "Release\Jeeps"
+
+!ELSEIF  "$(CFG)" == "GPSBabel - Win32 Debug"
+
+# PROP Intermediate_Dir "Debug\Jeeps"
+
+!ENDIF 
+
+# End Source File
+# End Group
+# Begin Group "Coldsync"
+
+# PROP Default_Filter ""
+# Begin Source File
+
+SOURCE=..\coldsync\pdb.c
+
+!IF  "$(CFG)" == "GPSBabel - Win32 Release"
+
+# PROP Intermediate_Dir "Release\Coldsync"
+
+!ELSEIF  "$(CFG)" == "GPSBabel - Win32 Debug"
+
+# PROP Intermediate_Dir "Debug\Coldsync"
+
+!ENDIF 
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\coldsync\util.c
+
+!IF  "$(CFG)" == "GPSBabel - Win32 Release"
+
+# PROP Intermediate_Dir "Release\Coldsync"
+
+!ELSEIF  "$(CFG)" == "GPSBabel - Win32 Debug"
+
+# PROP Intermediate_Dir "Debug\Coldsync"
+
+!ENDIF 
+
+# End Source File
+# End Group
+# Begin Source File
+
+SOURCE=..\arcdist.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\cetus.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\copilot.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\csv_util.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\delgpl.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\duplicate.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\easygps.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\filter_vecs.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\garmin.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\gcdb.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\geo.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\geoniche.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\gpilots.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\gpspilot.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\gpsutil.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\gpx.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\grtcirc.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\holux.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\hsa_ndv.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\html.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\internal_styles.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\magnav.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\magproto.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\main.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\mapopolis.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\mapsend.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\mapsource.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\mkshort.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\navicache.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\netstumbler.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\nmea.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ozi.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\palmdoc.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\pcx.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\polygon.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\position.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\psitrex.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\psp.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\queue.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\quovadis.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\reverse_route.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\route.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\saroute.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\smplrout.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\sort.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\text.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\tiger.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\tmpro.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\tpg.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\util.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\util_crc.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\vecs.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\vmem.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\waypt.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\xcsv.c
+# End Source File
+# Begin Source File
+
+SOURCE=.\Expat\libexpat.lib
+# End Source File
+# End Group
+# Begin Group "Header Files"
+
+# PROP Default_Filter "h;hpp;hxx;hm;inl"
+# Begin Group "Coldsync-Headers"
+
+# PROP Default_Filter ""
+# Begin Source File
+
+SOURCE=..\coldsync\config.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\coldsync\palm.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\coldsync\pdb.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\coldsync\pconn\util.h
+# End Source File
+# End Group
+# Begin Group "Jeeps-Headers"
+
+# PROP Default_Filter ""
+# Begin Source File
+
+SOURCE=..\jeeps\gps.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsapp.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpscom.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsdatum.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsfmt.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsinput.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsmath.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsmem.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsnmea.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsnmeafmt.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsnmeaget.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsport.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsproj.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsprot.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsread.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsrqst.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpssend.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsserial.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsutil.h
+# End Source File
+# End Group
+# Begin Source File
+
+SOURCE=..\csv_util.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\defs.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\garmin_tables.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\grtcirc.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\holux.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\magellan.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\mapsend.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\queue.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\quovadis.h
+# End Source File
+# End Group
+# Begin Group "Resource Files"
+
+# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
+# End Group
+# End Target
+# End Project
diff --git a/gpsbabel/msvc/GPSBabel.sln b/gpsbabel/msvc/GPSBabel.sln
new file mode 100644 (file)
index 0000000..3748f75
--- /dev/null
@@ -0,0 +1,21 @@
+Microsoft Visual Studio Solution File, Format Version 8.00
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GPSBabel", "GPSBabel.vcproj", "{EB2609DB-5800-45B2-BCB2-06D72F389DCA}"
+       ProjectSection(ProjectDependencies) = postProject
+       EndProjectSection
+EndProject
+Global
+       GlobalSection(SolutionConfiguration) = preSolution
+               Debug = Debug
+               Release = Release
+       EndGlobalSection
+       GlobalSection(ProjectConfiguration) = postSolution
+               {EB2609DB-5800-45B2-BCB2-06D72F389DCA}.Debug.ActiveCfg = Debug|Win32
+               {EB2609DB-5800-45B2-BCB2-06D72F389DCA}.Debug.Build.0 = Debug|Win32
+               {EB2609DB-5800-45B2-BCB2-06D72F389DCA}.Release.ActiveCfg = Release|Win32
+               {EB2609DB-5800-45B2-BCB2-06D72F389DCA}.Release.Build.0 = Release|Win32
+       EndGlobalSection
+       GlobalSection(ExtensibilityGlobals) = postSolution
+       EndGlobalSection
+       GlobalSection(ExtensibilityAddIns) = postSolution
+       EndGlobalSection
+EndGlobal
diff --git a/gpsbabel/msvc/GPSBabel.vcproj b/gpsbabel/msvc/GPSBabel.vcproj
new file mode 100644 (file)
index 0000000..d3a5161
--- /dev/null
@@ -0,0 +1,1705 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioProject
+       ProjectType="Visual C++"
+       Version="7.10"
+       Name="GPSBabel"
+       SccProjectName=""
+       SccLocalPath="">
+       <Platforms>
+               <Platform
+                       Name="Win32"/>
+       </Platforms>
+       <Configurations>
+               <Configuration
+                       Name="Release|Win32"
+                       OutputDirectory=".\Release"
+                       IntermediateDirectory=".\Release"
+                       ConfigurationType="1"
+                       UseOfMFC="0"
+                       ATLMinimizesCRunTimeLibraryUsage="FALSE"
+                       CharacterSet="2">
+                       <Tool
+                               Name="VCCLCompilerTool"
+                               Optimization="2"
+                               InlineFunctionExpansion="1"
+                               AdditionalIncludeDirectories="expat,..\coldsync"
+                               PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE;__WIN32__;VERSION=\&quot;1.2.1_beta01072004_msvc\&quot;"
+                               StringPooling="TRUE"
+                               RuntimeLibrary="4"
+                               EnableFunctionLevelLinking="TRUE"
+                               UsePrecompiledHeader="2"
+                               PrecompiledHeaderFile=".\Release/GPSBabel.pch"
+                               AssemblerListingLocation=".\Release/"
+                               ObjectFile=".\Release/"
+                               ProgramDataBaseFileName=".\Release/"
+                               WarningLevel="3"
+                               SuppressStartupBanner="TRUE"
+                               CompileAs="0"/>
+                       <Tool
+                               Name="VCCustomBuildTool"/>
+                       <Tool
+                               Name="VCLinkerTool"
+                               OutputFile=".\Release/GPSBabel.exe"
+                               LinkIncremental="1"
+                               SuppressStartupBanner="TRUE"
+                               ProgramDatabaseFile=".\Release/GPSBabel.pdb"
+                               SubSystem="1"
+                               TargetMachine="1"/>
+                       <Tool
+                               Name="VCMIDLTool"
+                               TypeLibraryName=".\Release/GPSBabel.tlb"
+                               HeaderFileName=""/>
+                       <Tool
+                               Name="VCPostBuildEventTool"/>
+                       <Tool
+                               Name="VCPreBuildEventTool"/>
+                       <Tool
+                               Name="VCPreLinkEventTool"/>
+                       <Tool
+                               Name="VCResourceCompilerTool"
+                               PreprocessorDefinitions="NDEBUG"
+                               Culture="1033"/>
+                       <Tool
+                               Name="VCWebServiceProxyGeneratorTool"/>
+                       <Tool
+                               Name="VCXMLDataGeneratorTool"/>
+                       <Tool
+                               Name="VCWebDeploymentTool"/>
+                       <Tool
+                               Name="VCManagedWrapperGeneratorTool"/>
+                       <Tool
+                               Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
+               </Configuration>
+               <Configuration
+                       Name="Debug|Win32"
+                       OutputDirectory=".\Debug"
+                       IntermediateDirectory=".\Debug"
+                       ConfigurationType="1"
+                       UseOfMFC="0"
+                       ATLMinimizesCRunTimeLibraryUsage="FALSE"
+                       CharacterSet="2">
+                       <Tool
+                               Name="VCCLCompilerTool"
+                               Optimization="0"
+                               AdditionalIncludeDirectories="expat,..\coldsync"
+                               PreprocessorDefinitions="WIN32;__WIN32__;_DEBUG;_CONSOLE;VERSION=\&quot;1.2.1_beta01072004_msvc\&quot;"
+                               BasicRuntimeChecks="3"
+                               RuntimeLibrary="5"
+                               UsePrecompiledHeader="2"
+                               PrecompiledHeaderFile=".\Debug/GPSBabel.pch"
+                               AssemblerListingLocation=".\Debug/"
+                               ObjectFile=".\Debug/"
+                               ProgramDataBaseFileName=".\Debug/"
+                               BrowseInformation="1"
+                               WarningLevel="3"
+                               SuppressStartupBanner="TRUE"
+                               DebugInformationFormat="4"
+                               CompileAs="0"/>
+                       <Tool
+                               Name="VCCustomBuildTool"/>
+                       <Tool
+                               Name="VCLinkerTool"
+                               OutputFile=".\Debug/GPSBabel.exe"
+                               LinkIncremental="1"
+                               SuppressStartupBanner="TRUE"
+                               GenerateDebugInformation="TRUE"
+                               ProgramDatabaseFile=".\Debug/GPSBabel.pdb"
+                               SubSystem="1"
+                               TargetMachine="1"/>
+                       <Tool
+                               Name="VCMIDLTool"
+                               TypeLibraryName=".\Debug/GPSBabel.tlb"
+                               HeaderFileName=""/>
+                       <Tool
+                               Name="VCPostBuildEventTool"/>
+                       <Tool
+                               Name="VCPreBuildEventTool"/>
+                       <Tool
+                               Name="VCPreLinkEventTool"/>
+                       <Tool
+                               Name="VCResourceCompilerTool"
+                               PreprocessorDefinitions="_DEBUG"
+                               Culture="1033"/>
+                       <Tool
+                               Name="VCWebServiceProxyGeneratorTool"/>
+                       <Tool
+                               Name="VCXMLDataGeneratorTool"/>
+                       <Tool
+                               Name="VCWebDeploymentTool"/>
+                       <Tool
+                               Name="VCManagedWrapperGeneratorTool"/>
+                       <Tool
+                               Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
+               </Configuration>
+       </Configurations>
+       <References>
+       </References>
+       <Files>
+               <Filter
+                       Name="Source Files"
+                       Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat">
+                       <File
+                               RelativePath="..\arcdist.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\cetus.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\copilot.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\csv_util.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\delgpl.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\duplicate.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\easygps.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\filter_vecs.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\garmin.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\gcdb.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\geo.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\geoniche.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\gpilots.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\gpspilot.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\gpsutil.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\gpx.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\grtcirc.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\holux.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\hsa_ndv.c">
+                       </File>
+                       <File
+                               RelativePath="..\html.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\internal_styles.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="Expat\libexpat.lib">
+                       </File>
+                       <File
+                               RelativePath="..\magnav.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\magproto.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\main.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\mapopolis.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\mapsend.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\mapsource.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\mkshort.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\navicache.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\netstumbler.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\nmea.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\ozi.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\palmdoc.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\pcx.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\polygon.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\position.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\psitrex.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\psp.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\queue.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\quovadis.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\reverse_route.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\route.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\saroute.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\smplrout.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\sort.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\text.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\tiger.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\tmpro.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\tpg.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\util.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\util_crc.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\vecs.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\vmem.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\waypt.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <File
+                               RelativePath="..\xcsv.c">
+                               <FileConfiguration
+                                       Name="Release|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="2"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""/>
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32">
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               Optimization="0"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                               BasicRuntimeChecks="3"
+                                               BrowseInformation="1"/>
+                               </FileConfiguration>
+                       </File>
+                       <Filter
+                               Name="Jeeps"
+                               Filter="">
+                               <File
+                                       RelativePath="..\jeeps\gpsapp.c">
+                                       <FileConfiguration
+                                               Name="Release|Win32">
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       Optimization="2"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                                       ObjectFile=".\Release\Jeeps/"
+                                                       ProgramDataBaseFileName="Release\Jeeps/"/>
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32">
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       Optimization="0"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                                       BasicRuntimeChecks="3"
+                                                       ObjectFile=".\Debug\Jeeps/"
+                                                       ProgramDataBaseFileName="Debug\Jeeps/"
+                                                       BrowseInformation="1"/>
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\jeeps\gpscom.c">
+                                       <FileConfiguration
+                                               Name="Release|Win32">
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       Optimization="2"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                                       ObjectFile=".\Release\Jeeps/"
+                                                       ProgramDataBaseFileName="Release\Jeeps/"/>
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32">
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       Optimization="0"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                                       BasicRuntimeChecks="3"
+                                                       ObjectFile=".\Debug\Jeeps/"
+                                                       ProgramDataBaseFileName="Debug\Jeeps/"
+                                                       BrowseInformation="1"/>
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\jeeps\gpsmath.c">
+                                       <FileConfiguration
+                                               Name="Release|Win32">
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       Optimization="2"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                                       ObjectFile=".\Release\Jeeps/"
+                                                       ProgramDataBaseFileName="Release\Jeeps/"/>
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32">
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       Optimization="0"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                                       BasicRuntimeChecks="3"
+                                                       ObjectFile=".\Debug\Jeeps/"
+                                                       ProgramDataBaseFileName="Debug\Jeeps/"
+                                                       BrowseInformation="1"/>
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\jeeps\gpsmem.c">
+                                       <FileConfiguration
+                                               Name="Release|Win32">
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       Optimization="2"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                                       ObjectFile=".\Release\Jeeps/"
+                                                       ProgramDataBaseFileName="Release\Jeeps/"/>
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32">
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       Optimization="0"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                                       BasicRuntimeChecks="3"
+                                                       ObjectFile=".\Debug\Jeeps/"
+                                                       ProgramDataBaseFileName="Debug\Jeeps/"
+                                                       BrowseInformation="1"/>
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\jeeps\gpsprot.c">
+                                       <FileConfiguration
+                                               Name="Release|Win32">
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       Optimization="2"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                                       ObjectFile=".\Release\Jeeps/"
+                                                       ProgramDataBaseFileName="Release\Jeeps/"/>
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32">
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       Optimization="0"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                                       BasicRuntimeChecks="3"
+                                                       ObjectFile=".\Debug\Jeeps/"
+                                                       ProgramDataBaseFileName="Debug\Jeeps/"
+                                                       BrowseInformation="1"/>
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\jeeps\gpsread.c">
+                                       <FileConfiguration
+                                               Name="Release|Win32">
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       Optimization="2"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                                       ObjectFile=".\Release\Jeeps/"
+                                                       ProgramDataBaseFileName="Release\Jeeps/"/>
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32">
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       Optimization="0"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                                       BasicRuntimeChecks="3"
+                                                       ObjectFile=".\Debug\Jeeps/"
+                                                       ProgramDataBaseFileName="Debug\Jeeps/"
+                                                       BrowseInformation="1"/>
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\jeeps\gpsrqst.c">
+                                       <FileConfiguration
+                                               Name="Release|Win32">
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       Optimization="2"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                                       ObjectFile=".\Release\Jeeps/"
+                                                       ProgramDataBaseFileName="Release\Jeeps/"/>
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32">
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       Optimization="0"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                                       BasicRuntimeChecks="3"
+                                                       ObjectFile=".\Debug\Jeeps/"
+                                                       ProgramDataBaseFileName="Debug\Jeeps/"
+                                                       BrowseInformation="1"/>
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\jeeps\gpssend.c">
+                                       <FileConfiguration
+                                               Name="Release|Win32">
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       Optimization="2"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                                       ObjectFile=".\Release\Jeeps/"
+                                                       ProgramDataBaseFileName="Release\Jeeps/"/>
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32">
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       Optimization="0"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                                       BasicRuntimeChecks="3"
+                                                       ObjectFile=".\Debug\Jeeps/"
+                                                       ProgramDataBaseFileName="Debug\Jeeps/"
+                                                       BrowseInformation="1"/>
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\jeeps\gpsserial.c">
+                                       <FileConfiguration
+                                               Name="Release|Win32">
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       Optimization="2"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                                       ObjectFile=".\Release\Jeeps/"
+                                                       ProgramDataBaseFileName="Release\Jeeps/"/>
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32">
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       Optimization="0"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                                       BasicRuntimeChecks="3"
+                                                       ObjectFile=".\Debug\Jeeps/"
+                                                       ProgramDataBaseFileName="Debug\Jeeps/"
+                                                       BrowseInformation="1"/>
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\jeeps\gpsutil.c">
+                                       <FileConfiguration
+                                               Name="Release|Win32">
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       Optimization="2"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                                       ObjectFile=".\Release\Jeeps/"
+                                                       ProgramDataBaseFileName="Release\Jeeps/"/>
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32">
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       Optimization="0"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                                       BasicRuntimeChecks="3"
+                                                       ObjectFile=".\Debug\Jeeps/"
+                                                       ProgramDataBaseFileName="Debug\Jeeps/"
+                                                       BrowseInformation="1"/>
+                                       </FileConfiguration>
+                               </File>
+                       </Filter>
+                       <Filter
+                               Name="Coldsync"
+                               Filter="">
+                               <File
+                                       RelativePath="..\coldsync\pdb.c">
+                                       <FileConfiguration
+                                               Name="Release|Win32">
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       Optimization="2"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                                       ObjectFile=".\Release\Coldsync/"
+                                                       ProgramDataBaseFileName="Release\Coldsync/"/>
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32">
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       Optimization="0"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                                       BasicRuntimeChecks="3"
+                                                       ObjectFile=".\Debug\Coldsync/"
+                                                       ProgramDataBaseFileName="Debug\Coldsync/"
+                                                       BrowseInformation="1"/>
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\coldsync\util.c">
+                                       <FileConfiguration
+                                               Name="Release|Win32">
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       Optimization="2"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                                       ObjectFile=".\Release\Coldsync/"
+                                                       ProgramDataBaseFileName="Release\Coldsync/"/>
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32">
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       Optimization="0"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                                       BasicRuntimeChecks="3"
+                                                       ObjectFile=".\Debug\Coldsync/"
+                                                       ProgramDataBaseFileName="Debug\Coldsync/"
+                                                       BrowseInformation="1"/>
+                                       </FileConfiguration>
+                               </File>
+                       </Filter>
+               </Filter>
+               <Filter
+                       Name="Header Files"
+                       Filter="h;hpp;hxx;hm;inl">
+                       <File
+                               RelativePath="..\csv_util.h">
+                       </File>
+                       <File
+                               RelativePath="..\defs.h">
+                       </File>
+                       <File
+                               RelativePath="..\garmin_tables.h">
+                       </File>
+                       <File
+                               RelativePath="..\grtcirc.h">
+                       </File>
+                       <File
+                               RelativePath="..\holux.h">
+                       </File>
+                       <File
+                               RelativePath="..\magellan.h">
+                       </File>
+                       <File
+                               RelativePath="..\mapsend.h">
+                       </File>
+                       <File
+                               RelativePath="..\queue.h">
+                       </File>
+                       <File
+                               RelativePath="..\quovadis.h">
+                       </File>
+                       <Filter
+                               Name="Coldsync-Headers"
+                               Filter="">
+                               <File
+                                       RelativePath="..\coldsync\config.h">
+                               </File>
+                               <File
+                                       RelativePath="..\coldsync\palm.h">
+                               </File>
+                               <File
+                                       RelativePath="..\coldsync\pdb.h">
+                               </File>
+                               <File
+                                       RelativePath="..\coldsync\pconn\util.h">
+                               </File>
+                       </Filter>
+                       <Filter
+                               Name="Jeeps-Headers"
+                               Filter="">
+                               <File
+                                       RelativePath="..\jeeps\gps.h">
+                               </File>
+                               <File
+                                       RelativePath="..\jeeps\gpsapp.h">
+                               </File>
+                               <File
+                                       RelativePath="..\jeeps\gpscom.h">
+                               </File>
+                               <File
+                                       RelativePath="..\jeeps\gpsdatum.h">
+                               </File>
+                               <File
+                                       RelativePath="..\jeeps\gpsfmt.h">
+                               </File>
+                               <File
+                                       RelativePath="..\jeeps\gpsinput.h">
+                               </File>
+                               <File
+                                       RelativePath="..\jeeps\gpsmath.h">
+                               </File>
+                               <File
+                                       RelativePath="..\jeeps\gpsmem.h">
+                               </File>
+                               <File
+                                       RelativePath="..\jeeps\gpsnmea.h">
+                               </File>
+                               <File
+                                       RelativePath="..\jeeps\gpsnmeafmt.h">
+                               </File>
+                               <File
+                                       RelativePath="..\jeeps\gpsnmeaget.h">
+                               </File>
+                               <File
+                                       RelativePath="..\jeeps\gpsport.h">
+                               </File>
+                               <File
+                                       RelativePath="..\jeeps\gpsproj.h">
+                               </File>
+                               <File
+                                       RelativePath="..\jeeps\gpsprot.h">
+                               </File>
+                               <File
+                                       RelativePath="..\jeeps\gpsread.h">
+                               </File>
+                               <File
+                                       RelativePath="..\jeeps\gpsrqst.h">
+                               </File>
+                               <File
+                                       RelativePath="..\jeeps\gpssend.h">
+                               </File>
+                               <File
+                                       RelativePath="..\jeeps\gpsserial.h">
+                               </File>
+                               <File
+                                       RelativePath="..\jeeps\gpsutil.h">
+                               </File>
+                       </Filter>
+               </Filter>
+               <Filter
+                       Name="Resource Files"
+                       Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe">
+               </Filter>
+       </Files>
+       <Globals>
+       </Globals>
+</VisualStudioProject>
index 763cb6d13a84130c1555196afcb4e6413fcb52ef..bc825dfdb3fd5a7e0ec291bd29e40442c888721c 100644 (file)
@@ -43,7 +43,7 @@ arglist_t nav_args[] = {
 void
 nav_rd_init(const char *fname)
 {
-       fatal(MYNAME ": This build excluded GPX support becuase expat was not installed.\n");
+       fatal(MYNAME ": This build excluded GPX support because expat was not installed.\n");
 }
 
 void
index 9781aa2a8f4834059a66edf548afeb0f3adef9b7..c30109765577c16637522773e17418175712c04c 100644 (file)
@@ -199,7 +199,7 @@ dscale(double distance)
 {
        /*
         * If we have any specified margin options  factor those in now.  
-        * A additional little boundary is helpful becuase Tiger always 
+        * A additional little boundary is helpful because Tiger always 
         * puts the pin above the actual coord and if we don't pad the 
         * top will be clipped.   It also makes the maps more useful to 
         * have a little bit of context around the pins on the border.
index 1bb62affb22f647b4dfd26b86be8d398c5b99675..4cbfa8973750dcedb93e6bb5b5930eceae99a3ca 100644 (file)
@@ -64,6 +64,7 @@ extern ff_vecs_t text_vecs;
 extern ff_vecs_t palmdoc_vecs;
 extern ff_vecs_t html_vecs;
 extern ff_vecs_t netstumbler_vecs;
+extern ff_vecs_t HsaEndeavourNavigator_vecs;
 
 static
 vecs_t vec_list[] = {
@@ -272,6 +273,12 @@ vecs_t vec_list[] = {
                "NetStumbler Summary File",
                NULL
        },
+       {
+               &HsaEndeavourNavigator_vecs,
+               "hsandv",
+               "HSA Endeavour Navigator export File",
+               NULL
+       },
        {
                NULL,
                NULL,